home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
docs
/
pascsrc
/
proced5.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
441 b
|
27 lines
(* Chapter 5 - Program 5 *)
program Procedure_Calling_A_Procedure;
procedure One;
begin
Writeln('This is procedure one');
end;
procedure Two;
begin
One;
Writeln('This is procedure two');
end;
procedure Three;
begin
Two;
Writeln('This is procedure three');
end;
begin (* main program *)
One;
Writeln;
Two;
Writeln;
Three;
end. (* of main program *)